Micron Document
🌎 rns.kin.earth git 🌍

Node / dev / reticulum / commits / ff3a722

Commit ff3a72209e5001eb8ecaec836ea4e6c8a80d09f7


Parents : 803b548
Author : Mark Qvist <bc7291552be7a58f361522990465165c>
Signature : T66BB85Valid, signed by author
Date : 2026-08-27T18:32:41+02:00

Avoid rebind of exception reference

Changes

1 files changed, 1 insertions(+), 1 deletions(-)


Diff

diff --git a/RNS/Identity.py b/RNS/Identity.py
index 988d3a43..64720151 100644
--- a/RNS/Identity.py
+++ b/RNS/Identity.py
@@ -201,7 +201,7 @@ class Identity:
except Exception as e:
RNS.log(f"Error while serializing and writing known destinations: {e}", RNS.LOG_ERROR)
try: os.unlink(temp_file)
- except Exception as e: RNS.log(f"Could not clean up temporary file {temp_file}: {e}", RNS.LOG_WARNING)
+ except Exception as exc: RNS.log(f"Could not clean up temporary file {temp_file}: {exc}", RNS.LOG_WARNING)
raise e
RNS.log(f"Saved known destinations to storage in {RNS.prettyshorttime(time.time()-save_start)}", RNS.LOG_DEBUG) if RNS.sl(RNS.LOG_DEBUG) else None

Served by rngit 1.5.2 - Generated in 0.05s